home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevpsdf.h < prev    next >
C/C++ Source or Header  |  1997-06-19  |  7KB  |  192 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpsdf.h */
  20. /* Common output syntax and parameters for PostScript and PDF writers */
  21. #include "gdevvec.h"
  22. /* We shouldn't need the following, but some picky compilers don't allow */
  23. /* externs for undefined structure types. */
  24. #include "strimpl.h"
  25.  
  26. /* ---------------- Distiller parameters ---------------- */
  27.  
  28. /* Parameters for controlling distillation of images. */
  29. typedef struct psdf_image_params_s {
  30.     /* ACSDict */
  31.     bool AntiAlias;
  32.     bool AutoFilter;
  33.     int Depth;
  34.     /* Dict */
  35.     bool Downsample;
  36.     enum psdf_downsample_type {
  37.       ds_Average,
  38.       ds_Subsample
  39.     } DownsampleType;
  40.     bool Encode;
  41.     const char *Filter;
  42.     int Resolution;
  43.     const stream_template *filter_template;
  44. } psdf_image_params;
  45. #define psdf_image_param_defaults(f, ft)\
  46.   /*ACSDict,*/ 0/*false*/, 0/*false*/, -1, /*Dict,*/ 0/*false*/,\
  47.   ds_Subsample, 1/*true*/, f, 72, ft
  48.  
  49. /* Declare templates for default image compression filters. */
  50. extern const stream_template s_CFE_template;
  51.  
  52. /* Complete distiller parameters. */
  53. typedef struct psdf_distiller_params_s {
  54.  
  55.         /* General parameters */
  56.  
  57.     bool ASCII85EncodePages;
  58.     enum psdf_auto_rotate_pages {
  59.       arp_None,
  60.       arp_All,
  61.       arp_PageByPage
  62.     } AutoRotatePages;
  63.     bool CompressPages;
  64.     long ImageMemory;
  65.     bool LZWEncodePages;
  66.     bool PreserveHalftoneInfo;
  67.     bool PreserveOPIComments;
  68.     bool PreserveOverprintSettings;
  69.     enum psdf_transfer_function_info {
  70.       tfi_Preserve,
  71.       tfi_Apply,
  72.       tfi_Remove
  73.     } TransferFunctionInfo;
  74.     enum psdf_ucr_and_bg_info {
  75.       ucrbg_Preserve,
  76.       ucrbg_Remove
  77.     } UCRandBGInfo;
  78.     bool UseFlateCompression;
  79. #define psdf_general_param_defaults(ascii)\
  80.   ascii, arp_None, 1/*true*/, 250000, 0/*false*/,\
  81.   0/*false*/, 0/*false*/, 0/*false*/, tfi_Apply, ucrbg_Remove, 1/*true*/
  82.  
  83.         /* Color sampled image parameters */
  84.  
  85.     psdf_image_params ColorImage;
  86.     enum psdf_color_conversion_strategy {
  87.       ccs_LeaveColorUnchanged,
  88.       ccs_UseDeviceDependentColor,
  89.       ccs_UseDeviceIndependentColor
  90.     } ColorConversionStrategy;
  91.     bool ConvertCMYKImagesToRGB;
  92.     bool ConvertImagesToIndexed;
  93. #define psdf_color_image_param_defaults\
  94.   { psdf_image_param_defaults(0, 0) },\
  95.   ccs_LeaveColorUnchanged, 1/*true*/, 0/*false*/
  96.  
  97.         /* Grayscale sampled image parameters */      
  98.  
  99.     psdf_image_params GrayImage;
  100. #define psdf_gray_image_param_defaults\
  101.   { psdf_image_param_defaults(0, 0) }
  102.  
  103.         /* Monochrome sampled image parameters */
  104.  
  105.     psdf_image_params MonoImage;
  106. #define psdf_mono_image_param_defaults\
  107.   { psdf_image_param_defaults("CCITTFaxEncode", &s_CFE_template) }
  108.  
  109.         /* Font embedding parameters */
  110.  
  111.     gs_param_string_array AlwaysEmbed;
  112.     gs_param_string_array NeverEmbed;
  113.     bool EmbedAllFonts;
  114.     bool SubsetFonts;
  115.     int MaxSubsetPct;
  116. #define psdf_font_param_defaults\
  117.           { 0, 0, 1/*true*/ }, { 0, 0, 1/*true*/ },\
  118.        1/*true*/, 1/*true*/, 20
  119.  
  120. } psdf_distiller_params;
  121.  
  122. /* Define the extended device structure. */
  123. #define gx_device_psdf_common\
  124.     gx_device_vector_common;\
  125.     psdf_distiller_params params
  126. typedef struct gx_device_psdf_s {
  127.     gx_device_psdf_common;
  128. } gx_device_psdf;
  129. #define psdf_initial_values(ascii)\
  130.     vector_initial_values,\
  131.      { psdf_general_param_defaults(ascii),\
  132.        psdf_color_image_param_defaults,\
  133.        psdf_gray_image_param_defaults,\
  134.        psdf_mono_image_param_defaults,\
  135.        psdf_font_param_defaults\
  136.      }
  137.  
  138. /* st_device_psdf is never instantiated per se, but we still need to */
  139. /* extern its descriptor for the sake of subclasses. */
  140. extern_st(st_device_psdf);
  141. #define public_st_device_psdf()    /* in gdevpsdf.c */\
  142.   gs_public_st_suffix_add0_final(st_device_psdf, gx_device_psdf,\
  143.     "gx_device_psdf", device_psdf_enum_ptrs,\
  144.     device_psdf_reloc_ptrs, gx_device_finalize, st_device)
  145. #define st_device_psdf_max_ptrs (st_device_vector_max_ptrs)
  146.  
  147. /* Get/put parameters. */
  148. dev_proc_get_params(gdev_psdf_get_params);
  149. dev_proc_put_params(gdev_psdf_put_params);
  150.  
  151. /* Put a Boolean or integer parameter. */
  152. int psdf_put_bool_param(P4(gs_param_list *plist, gs_param_name param_name,
  153.                bool *pval, int ecode));
  154. int psdf_put_int_param(P4(gs_param_list *plist, gs_param_name param_name,
  155.               int *pval, int ecode));
  156.  
  157. /* ---------------- Vector implementation procedures ---------------- */
  158.  
  159.     /* Imager state */
  160. int psdf_setlinewidth(P2(gx_device_vector *vdev, floatp width));
  161. int psdf_setlinecap(P2(gx_device_vector *vdev, gs_line_cap cap));
  162. int psdf_setlinejoin(P2(gx_device_vector *vdev, gs_line_join join));
  163. int psdf_setmiterlimit(P2(gx_device_vector *vdev, floatp limit));
  164. int psdf_setdash(P4(gx_device_vector *vdev, const float *pattern,
  165.             uint count, floatp offset));
  166. int psdf_setflat(P2(gx_device_vector *vdev, floatp flatness));
  167. int psdf_setlogop(P3(gx_device_vector *vdev, gs_logical_operation_t lop,
  168.              gs_logical_operation_t diff));
  169.     /* Other state */
  170. int psdf_setfillcolor(P2(gx_device_vector *vdev, const gx_drawing_color *pdc));
  171. int psdf_setstrokecolor(P2(gx_device_vector *vdev, const gx_drawing_color *pdc));
  172.     /* Paths */
  173. #define psdf_dopath gdev_vector_dopath
  174. int psdf_dorect(P6(gx_device_vector *vdev, fixed x0, fixed y0, fixed x1,
  175.            fixed y1, gx_path_type_t type));
  176. int psdf_beginpath(P2(gx_device_vector *vdev, gx_path_type_t type));
  177. int psdf_moveto(P6(gx_device_vector *vdev, floatp x0, floatp y0,
  178.            floatp x, floatp y, bool first));
  179. int psdf_lineto(P5(gx_device_vector *vdev, floatp x0, floatp y0,
  180.            floatp x, floatp y));
  181. int psdf_curveto(P9(gx_device_vector *vdev, floatp x0, floatp y0,
  182.             floatp x1, floatp y1, floatp x2,
  183.             floatp y2, floatp x3, floatp y3));
  184. int psdf_closepath(P5(gx_device_vector *vdev, floatp x0, floatp y0,
  185.               floatp x_start, floatp y_start));
  186.  
  187. /* ---------------- Other procedures ---------------- */
  188.  
  189. /* Set the fill or stroke color.  rgs is "rg" or "RG". */
  190. int psdf_set_color(P3(gx_device_vector *vdev, const gx_drawing_color *pdc,
  191.               const char *rgs));
  192.